home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00876_Script_Chuck Bail Yes < prev    next >
Text File  |  1995-05-21  |  354b  |  15 lines

  1. on mouseDown
  2.   global calls, gMoney
  3.   if gMoney < 2000 then
  4.     set calls = "c"
  5.     puppetSound "button.aif"
  6.     set the movierate of sprite 48 to 1
  7.     go frame "ChuckNoMoney"
  8.   else
  9.     set gMoney = gMoney - 2000
  10.     set calls = "c"
  11.     puppetSound "button.aif"
  12.     set the movierate of sprite 48 to 1
  13.     go frame "ChuckYes"
  14.   end if
  15. end